Details
-
Improvement
-
Resolution: Fixed
-
Critical
-
0.9.9
-
None
-
None
Description
Currently there is no way to customize the ObjectName the MBean is bound to (besides using a ContextSelector - which can be a hassle).
This is an issue when deploying several applications in the same JVM (read: multiple web-applications in the same servlet engine).
This patch modifies JMXConfiguratorAction to accept two additional attributes that allow customizing the ObjectName for the MBean:
<jmxConfigurator/>
This yields the default ObjectName of "ch.qos.logback.classic:Name=${nameOfContext},Type=ch.qos.logback.classic.jmx.Configurator".
<jmxConfigurator namespace="foo"/>
This results in "ch.qos.logback.classic:Name=${nameOfContext},Type=ch.qos.logback.classic.jmx.Configurator,Namespace=foo".
<jmxConfigurator objectName="logback:name=foo,type=bar"/>
Which obviously results in "logback:name=foo,type=bar"
Let me know if I need to adjust the patch in any way.